home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / ComponentScrollerEvent.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  399 b   |  17 lines

  1. package
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class ComponentScrollerEvent extends Event
  6.    {
  7.       
  8.       public static const COMPONENT_SCROLLER_UPDATED:String = "ComponentScrollerUpdated";
  9.        
  10.       
  11.       public function ComponentScrollerEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  12.       {
  13.          super(param1,param2,param3);
  14.       }
  15.    }
  16. }
  17.